home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / netlib / RCS / Net_StringToNetNum.c,v < prev   
Text File  |  1988-11-21  |  2KB  |  134 lines

  1. head     1.1;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.1
  10. date     88.11.21.09.10.32;  author mendel;  state Exp;
  11. branches ;
  12. next     ;
  13.  
  14.  
  15. desc
  16. @Formed from net.c of src/lib/old/net.c.
  17. @
  18.  
  19.  
  20.  
  21. 1.1
  22. log
  23. @Initial revision
  24. @
  25. text
  26. @/* 
  27.  * Net_StringToNetNum.c --
  28.  *
  29.  *    Convert a string to the network number part of the address.
  30.  *
  31.  * Copyright 1987 Regents of the University of California
  32.  * All rights reserved.
  33.  * Permission to use, copy, modify, and distribute this
  34.  * software and its documentation for any purpose and without
  35.  * fee is hereby granted, provided that the above copyright
  36.  * notice appear in all copies.  The University of California
  37.  * makes no representations about the suitability of this
  38.  * software for any purpose.  It is provided "as is" without
  39.  * express or implied warranty.
  40.  */
  41.  
  42. #ifndef lint
  43. static char rcsid[] = "$Header: net.c,v 2.0 87/08/11 09:34:20 brent Exp $ SPRITE (Berkeley)";
  44. #endif not lint
  45.  
  46.  
  47. #include "sprite.h"
  48. #include "net.h"
  49. #include "ctype.h"
  50.  
  51. /*
  52.  *----------------------------------------------------------------------
  53.  *
  54.  * Net_StringToNetNum --
  55.  *
  56.  *    Given a string containing an IP address in the Internet standard 
  57.  *    "." notation, return  the network number for that address.
  58.  *
  59.  * Results:
  60.  *    The network number of the address.
  61.  *
  62.  * Side effects:
  63.  *    None.
  64.  *
  65.  *----------------------------------------------------------------------
  66.  */
  67.  
  68. unsigned int
  69. Net_StringToNetNum(cp)
  70.     register char *cp;
  71. {
  72.     register unsigned int value;
  73.     register unsigned int base;
  74.     unsigned int parts[4];
  75.     register unsigned int *partsPtr = parts;
  76.     register char c;
  77.     register int i;
  78.     unsigned int n;
  79.  
  80. again:
  81.     value = 0; 
  82.     base = 10;
  83.     if (*cp == '0') {
  84.     base = 8;
  85.     cp++;
  86.     }
  87.     if (*cp == 'x' || *cp == 'X') {
  88.     base = 16;
  89.     cp++;
  90.     }
  91.  
  92.     c = *cp;
  93.     while (c != '\0') {
  94.     if (isdigit(c)) {
  95.         value = (value * base) + (c - '0');
  96.     } else if (base == 16 && isxdigit(c)) {
  97.         value = (value << 4) + (c + 10 - (islower(c) ? 'a' : 'A'));
  98.     } else {
  99.         break;
  100.     }
  101.     cp++;
  102.     c = *cp;
  103.     }
  104.  
  105.     if (*cp == '.') {
  106.     if (partsPtr >= parts + 4) {
  107.         return(-1);
  108.     }
  109.     *partsPtr = value;
  110.     partsPtr++;
  111.     cp++;
  112.     goto again;
  113.     }
  114.  
  115.     if (*cp != '\0' && !isspace(*cp)) {
  116.     return(-1);
  117.     }
  118.  
  119.     *partsPtr = value;
  120.     partsPtr++;
  121.  
  122.     n = partsPtr - parts;
  123.     if (n > 4) {
  124.     return(-1);
  125.     }
  126.     for (value = 0, i = 0; i < n; i++) {
  127.         value <<= 8;
  128.         value |= parts[i] & 0xff;
  129.     }
  130.     return(value);
  131. }
  132.  
  133. @
  134.